ButtonModel.fromJson constructor
Implementation
factory ButtonModel.fromJson(Map<String, dynamic> json) {
return ButtonModel(
label: json['label'],
link: json['link'],
linkId: json['link_id'],
deepLinkType: json['deepLinkType'],
color: json['color'],
textColor: json['textColor'],
);
}