sourceName property
Name of the network source.
Implementation
String get sourceName {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_NetworkLocation_getSourceName(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set sourceName(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_NetworkLocation_setSourceName(
_handle,
coreValue.bytes,
errorHandler,
);
});
}