getUser method
After user connected, this function returns user object
Implementation
@override
Future<EarthoUser?> getUser() async {
final rawJson = await methodChannel.invokeMethod('getUser');
if (rawJson == null) return null;
final decodedJson = jsonDecode(rawJson);
return EarthoUser.fromJSON(decodedJson);
}