IssueChangelogIds.fromJson constructor

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

Implementation

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