static Future<bool> sendPin(String pin) async { final res = await channel.invokeMethod('sendPin', pin); return (res as Map)['success'] == true; }