ReplyMessageInfo.fromMap constructor

ReplyMessageInfo.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory ReplyMessageInfo.fromMap(Map<String, dynamic> map) {
  return ReplyMessageInfo(
      idClient: map['idClient'] as String?,
      scene: map['scene'] as String?,
      from: map['from'] as String?,
      to: map['to'] as String?,
      idServer: map['idServer']?.toString(),
      time: map['time'] as int?);
}