PriorityId.fromJson constructor

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

Implementation

factory PriorityId.fromJson(Map<String, Object?> json) {
  return PriorityId(
    id: json[r'id'] as String? ?? '',
  );
}