DeletedTaxId.fromJson constructor
DeletedTaxId.fromJson(
- Object? json
Implementation
factory DeletedTaxId.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return DeletedTaxId(id: (map['id'] as String));
}