ResourceIdentifier.fromJson constructor
Implementation
factory ResourceIdentifier.fromJson(Map<String, dynamic> json) {
return ResourceIdentifier(
resourceDeletionTime: timeStampFromJson(json['resourceDeletionTime']),
resourceId: json['resourceId'] as String?,
resourceName: json['resourceName'] as String?,
resourceType: (json['resourceType'] as String?)?.toResourceType(),
);
}