check method

  1. @override
Future<NativeCheckOutcome> check(
  1. Locale locale,
  2. String text, {
  3. required int maxSuggestions,
})
override

Spell checks text for locale.

Implementation

@override
Future<NativeCheckOutcome> check(
  Locale locale,
  String text, {
  required int maxSuggestions,
}) async {
  return const NativeCheckUnavailable(
    'Browsers do not expose their spell checker to web apps.',
  );
}