IssueBlocker.fromJson constructor

IssueBlocker.fromJson(
  1. Map<String, dynamic> json
)

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?,
);