PersonalizationDesignCarrierText.fromJson constructor
PersonalizationDesignCarrierText.fromJson(
- Object? json
Implementation
factory PersonalizationDesignCarrierText.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PersonalizationDesignCarrierText(
footerBody:
map['footer_body'] == null ? null : (map['footer_body'] as String),
footerTitle:
map['footer_title'] == null ? null : (map['footer_title'] as String),
headerBody:
map['header_body'] == null ? null : (map['header_body'] as String),
headerTitle:
map['header_title'] == null ? null : (map['header_title'] as String),
);
}