IssueMatches.fromJson constructor

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

Implementation

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