MessageCustomServiceAction.fromJson constructor

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

Parse from a json

Implementation

factory MessageCustomServiceAction.fromJson(Map<String, dynamic> json) => MessageCustomServiceAction(
  text: json['text'],
);