isAvailable method
Whether on-device speech recognition is available on this device right now (model downloaded, hardware supported). Does not request permission.
Implementation
@override
Future<bool> isAvailable() async {
final available = await methodChannel.invokeMethod<bool>('isAvailable');
return available ?? false;
}