notify method

Future<bool?> notify(
  1. bool? state
)

Implementation

Future<bool?> notify(bool? state) async {
  return await _methodChannel.invokeMethod('notify', {'data': state});
}