messageQueryRows.fromJson constructor

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

Implementation

factory messageQueryRows.fromJson(Map<String, dynamic> json) {
  return messageQueryRows(
      message_id : json['message_id'],
      is_private : json['is_private'],
      category : json['category'],
      title : json['title'],
      message : json['message'],
      param : json['param'],
      status_time : json['status_time'],
      date : json['date'],
      time : json['time'],
      is_read : json['is_read']
  );
}