TaxProductRegistrationsResourceCountryOptionsEuStandard.fromJson constructor

TaxProductRegistrationsResourceCountryOptionsEuStandard.fromJson(
  1. Object? json
)

Implementation

factory TaxProductRegistrationsResourceCountryOptionsEuStandard.fromJson(
    Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return TaxProductRegistrationsResourceCountryOptionsEuStandard(
      placeOfSupplyScheme:
          TaxProductRegistrationsResourceCountryOptionsEuStandardPlaceOfSupplyScheme
              .fromJson(map['place_of_supply_scheme']));
}