MerchantBrandingDetails.fromJson constructor

MerchantBrandingDetails.fromJson(
  1. Map<String, dynamic> jsonMap
)

Implementation

MerchantBrandingDetails.fromJson(Map<String, dynamic> jsonMap){
  logo = jsonMap['logo'];
  integrationType = jsonMap['integration_type'];
  merchantThemeDetails = MerchantThemeDetails.fromJson(jsonMap['merchantThemeDetails']);
}