MessageCustom.fromJson constructor

MessageCustom.fromJson(
  1. Map json
)

Implementation

MessageCustom.fromJson(Map json) {
  json = Utils.formatJson(json);
  version = json['version'];
  businessID = json['businessID'];
  opUser = json['opUser'];
  content = json['content'];
  cmd = json['cmd'];
}