TaxProductRegistrationsResourceCountryOptionsEurope.fromJson constructor

TaxProductRegistrationsResourceCountryOptionsEurope.fromJson(
  1. Object? json
)

Implementation

factory TaxProductRegistrationsResourceCountryOptionsEurope.fromJson(
    Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return TaxProductRegistrationsResourceCountryOptionsEurope(
    standard: map['standard'] == null
        ? null
        : TaxProductRegistrationsResourceCountryOptionsEuStandard.fromJson(
            map['standard']),
    type: TaxProductRegistrationsResourceCountryOptionsEuropeType.fromJson(
        map['type']),
  );
}