handleTvTextfieldPlatformCall function

Future handleTvTextfieldPlatformCall(
  1. MethodCall call
)

Handles TvTextFieldPlatform method channel calls on Dart-only platforms.

Implementation

Future<dynamic> handleTvTextfieldPlatformCall(MethodCall call) async {
  switch (call.method) {
    case 'getPlatformInfo':
      return <String, bool>{
        'isAndroidTv': false,
        'isTvOS': false,
        'isTelevision': false,
      };
    default:
      throw MissingPluginException('No implementation for ${call.method}');
  }
}