From 7108fbdae647adf098f5a2600859afebf602f553 Mon Sep 17 00:00:00 2001 From: Sasha Krstev Date: Wed, 26 Jul 2023 14:38:51 +0200 Subject: [PATCH] Removed methods that were overriding deprecated and non existant methods --- test/platform_comm/test_method_channel.dart | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/platform_comm/test_method_channel.dart b/test/platform_comm/test_method_channel.dart index 9b1c09d..d04cbc7 100644 --- a/test/platform_comm/test_method_channel.dart +++ b/test/platform_comm/test_method_channel.dart @@ -13,16 +13,6 @@ class TestMethodChannel implements MethodChannel { @override BinaryMessenger get binaryMessenger => throw UnimplementedError(); - @override - bool checkMethodCallHandler(Future Function(MethodCall call)? handler) { - throw UnimplementedError(); - } - - @override - bool checkMockMethodCallHandler(Future Function(MethodCall call)? handler) { - throw UnimplementedError(); - } - @override MethodCodec get codec => throw UnimplementedError(); @@ -43,7 +33,4 @@ class TestMethodChannel implements MethodChannel { @override String get name => throw UnimplementedError(); - - @override - void setMockMethodCallHandler(Future? Function(MethodCall call)? handler) {} }