MetaMessage.fromJson constructor

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

Implementation

factory MetaMessage.fromJson(Map<String, dynamic> json) {
  return MetaMessage(
    info: Info.fromJson(json['info']),
    content: json['content'] as String,
  );
}