static Future<List<String>> get emails async { List<dynamic>? list = await _channel.invokeMethod('getEmails'); return list?.cast<String>() ?? []; }