getAllActiveKeyboards method

  1. @override
Future<List<String>> getAllActiveKeyboards()
override

Implementation

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