getCurrentUser method
Implementation
@override
Future<CurrentUser> getCurrentUser() async {
try {
final jsonString =
await methodChannel.invokeMethod<String>('getCurrentUser');
return CurrentUser.fromJson(jsonString);
} catch (e) {
throw PassageError.fromObject(object: e);
}
}