occludeAllTextView static method

  1. @Deprecated('Use `occludeAllTextFields`')
Future<void> occludeAllTextView(
  1. bool value
)

This method is used for hiding TextField

value is boolean.

Implementation

@Deprecated('Use `occludeAllTextFields`')
static Future<void> occludeAllTextView(bool value) async {
  await _channel.invokeMethod('occludeAllTextView', {"key": value});
}