IssuingPhysicalBundleOrId.fromJson constructor
IssuingPhysicalBundleOrId.fromJson(
- Object? json
Implementation
factory IssuingPhysicalBundleOrId.fromJson(Object? json) {
if (json is String) {
return IssuingPhysicalBundleId(id: json);
}
return IssuingPhysicalBundle.fromJson(json);
}