auth method
Implementation
@override
Future<String?> auth(String userId,
{String? userAuthKey, String? userHash}) async {
String? carrotId = await methodChannel.invokeMethod<String>('auth', {
'user_id': userId,
'user_auth_key': userAuthKey,
'user_hash': userHash
});
return carrotId;
}