ProjectIdentifiers.fromJson constructor

ProjectIdentifiers.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ProjectIdentifiers.fromJson(Map<String, Object?> json) {
  return ProjectIdentifiers(
    id: (json[r'id'] as num?)?.toInt() ?? 0,
    key: json[r'key'] as String? ?? '',
    self: json[r'self'] as String? ?? '',
  );
}