AtomicTextListItem.fromJson constructor
Implementation
factory AtomicTextListItem.fromJson(Map<String, dynamic> json) {
return AtomicTextListItem(
text: json['text'] ?? '',
subText: json['sub_text'],
enabled: json['enabled'] ?? true,
maxLines: json['max_lines'],
);
}