From 29d2647d657675b19fa9c2411c45d3024c219869 Mon Sep 17 00:00:00 2001 From: Alfreedom <00tango.bromine@icloud.com> Date: Thu, 18 Apr 2024 18:39:35 +0200 Subject: [PATCH] format --- lib/walletconnect_flutter_v2_method_channel.dart | 6 ++++-- lib/walletconnect_flutter_v2_platform_interface.dart | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/walletconnect_flutter_v2_method_channel.dart b/lib/walletconnect_flutter_v2_method_channel.dart index b4285aa2..88e83c19 100644 --- a/lib/walletconnect_flutter_v2_method_channel.dart +++ b/lib/walletconnect_flutter_v2_method_channel.dart @@ -4,14 +4,16 @@ import 'package:flutter/services.dart'; import 'walletconnect_flutter_v2_platform_interface.dart'; /// An implementation of [WalletconnectFlutterV2Platform] that uses method channels. -class MethodChannelWalletconnectFlutterV2 extends WalletconnectFlutterV2Platform { +class MethodChannelWalletconnectFlutterV2 + extends WalletconnectFlutterV2Platform { /// The method channel used to interact with the native platform. @visibleForTesting final methodChannel = const MethodChannel('walletconnect_flutter_v2'); @override Future getPlatformVersion() async { - final version = await methodChannel.invokeMethod('getPlatformVersion'); + final version = + await methodChannel.invokeMethod('getPlatformVersion'); return version; } } diff --git a/lib/walletconnect_flutter_v2_platform_interface.dart b/lib/walletconnect_flutter_v2_platform_interface.dart index 06f26901..24dcfc64 100644 --- a/lib/walletconnect_flutter_v2_platform_interface.dart +++ b/lib/walletconnect_flutter_v2_platform_interface.dart @@ -8,7 +8,8 @@ abstract class WalletconnectFlutterV2Platform extends PlatformInterface { static final Object _token = Object(); - static WalletconnectFlutterV2Platform _instance = MethodChannelWalletconnectFlutterV2(); + static WalletconnectFlutterV2Platform _instance = + MethodChannelWalletconnectFlutterV2(); /// The default instance of [WalletconnectFlutterV2Platform] to use. ///