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