SjMessageSendsDto.fromJson constructor
SjMessageSendsDto.fromJson(
- Map map
Implementation
SjMessageSendsDto.fromJson(Map map)
: this(
chatId: map['chatId'],
text: map['text'],
images: (map['images'] as List?)?.cast(),
replyId: map['replyId'],
geopoint: (map['geopoint'] as List?)?.cast(),
payload: (map['payload'] as Map?)?.cast(),
);