PaymentLinksResourceTaxIdCollection.fromJson constructor

PaymentLinksResourceTaxIdCollection.fromJson(
  1. Object? json
)

Implementation

factory PaymentLinksResourceTaxIdCollection.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return PaymentLinksResourceTaxIdCollection(
      enabled: (map['enabled'] as bool));
}