getAllActiveKeyboards method
Implementation
@override
Future<List<String>> getAllActiveKeyboards() async {
final List<String> activeKeyboards =
await methodChannel.invokeListMethod('getAllActiveKeyboards') ?? [];
return activeKeyboards;
}
@override
Future<List<String>> getAllActiveKeyboards() async {
final List<String> activeKeyboards =
await methodChannel.invokeListMethod('getAllActiveKeyboards') ?? [];
return activeKeyboards;
}