fromJson static method

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

Creates a object from a json

Implementation

static MessageId fromJson(Map<String, dynamic> json) {
  return MessageId(messageId: json['message_id']);
}