IssueTypeIdsToRemove.fromJson constructor

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

Implementation

factory IssueTypeIdsToRemove.fromJson(Map<String, Object?> json) {
  return IssueTypeIdsToRemove(
    issueTypeIds: (json[r'issueTypeIds'] as List<Object?>?)
            ?.map((i) => i as String? ?? '')
            .toList() ??
        [],
  );
}