fetchUserData method
Invoke the method on the platform side for Asynchronously Call the fetch API and get the User data
Implementation
@override
Future<UserResponse> fetchUserData(UserDataQuery query) async =>
UserResponse.fromMap(
await methodChannel.invokeMethod('fetchUserData', query.toMap()));