IssuingPhysicalBundleFeatures.fromJson constructor

IssuingPhysicalBundleFeatures.fromJson(
  1. Object? json
)

Implementation

factory IssuingPhysicalBundleFeatures.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return IssuingPhysicalBundleFeatures(
    cardLogo:
        IssuingPhysicalBundleFeaturesCardLogo.fromJson(map['card_logo']),
    carrierText:
        IssuingPhysicalBundleFeaturesCardLogo.fromJson(map['carrier_text']),
    secondLine:
        IssuingPhysicalBundleFeaturesCardLogo.fromJson(map['second_line']),
  );
}