notify method

Future notify(
  1. MethodCall call
)

Implementation

Future notify(MethodCall call) async {
  int? id = call.arguments['id'];
  Results? result = _map[id!];
  if (result != null) {
    result.notify(call);
  }
}