handle method

  1. @visibleForTesting
Future<void> handle(
  1. MethodCall call
)

Implementation

@visibleForTesting
Future<void> handle(MethodCall call) async {
  _impressionsMethodCallHandler.handle(call.method, call.arguments);
  for (MethodCallHandler handler in _handlers.values) {
    handler.handle(call.method, call.arguments);
  }
}