getBaseUrl property

  1. @override
Future<String> get getBaseUrl
override

Implementation

@override
Future<String> get getBaseUrl async {
  final String? result = await methodChannel.invokeMethod('getBaseUrl');
  return result ?? 'could not get base url';
}