IssueBlocker.fromJson constructor
Builds a blocker from a JSON-style map.
Implementation
factory IssueBlocker.fromJson(Map<String, dynamic> json) => IssueBlocker(
id: json['id'] as String?,
identifier: json['identifier'] as String?,
state: json['state'] as String?,
);