handle method
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);
}
}