getProfile static method

Future<String?> getProfile()

Implementation

static Future<String?> getProfile() async {
  String? result = await _channel.invokeMethod('getProfile');
  return result;
}