TriggerLabel.fromJson constructor

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

Implementation

TriggerLabel.fromJson(Map<String, dynamic> json) {
  color = json['color'];
  background = json['background'];
  text = json['text'];
}