auth method
Implementation
@override
Future<Map<String, dynamic>> auth({String? state}) async {
final result = await methodChannel.invokeMapMethod<String, dynamic>(
'auth',
{'state': state ?? ''},
);
return result ??
{
'success': false,
'code': 'null_result',
'message': 'Native result is null',
};
}