ApplicationFeeOrId.fromJson constructor
ApplicationFeeOrId.fromJson(
- Object? json
Implementation
factory ApplicationFeeOrId.fromJson(Object? json) {
if (json is String) {
return ApplicationFeeId(id: json);
}
return ApplicationFee.fromJson(json);
}