merchant property

  1. @override
Future<SumupPluginMerchantResponse> get merchant
override

Implementation

@override
Future<SumupPluginMerchantResponse> get merchant async {
  final merchant = await methodChannel.invokeMethod('getMerchant');
  final response = SumupPluginResponse.fromMap(merchant);
  return SumupPluginMerchantResponse.fromMap(response.message!);
}