handler property

Future Function(MethodCall call)? get handler

Implementation

Future<dynamic> Function(MethodCall call)? get handler => _handler;
set handler (Future handler(MethodCall call)?)

Implementation

set handler(Future<dynamic> Function(MethodCall call)? handler) =>
    _handler = handler;