name property

String name

The WMS service name, typically this is "WMS".

Implementation

String get name {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_WMSServiceInfo_getName(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}