MessageAttachmentField.fromMap constructor

MessageAttachmentField.fromMap(
  1. Map<String, dynamic> json
)

Implementation

MessageAttachmentField.fromMap(Map<String, dynamic> json) {
  if (json != null) {
    short = json['short'];
    title = json['title'];
    value = json['value'];
  }
}