hasText method

  1. @override
Future<bool> hasText()
override

Implementation

@override
Future<bool> hasText() async {
  final bool? hasText = await _methodChannel.invokeMethod<bool>('hasText');
  return hasText ?? false;
}