occludeAllTextFields static method

Future<void> occludeAllTextFields(
  1. bool value
)

This method is used for hiding all TextFields

value is boolean.

Implementation

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