Components.fromJson constructor

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

Implementation

Components.fromJson(Map<String, dynamic> json) {
  text = json['text'];
  type = json['type'];
  abbrPriority = json['abbr_priority'];
}