Member.fromJsonWithChat constructor

Member.fromJsonWithChat(
  1. Chat chat,
  2. Map<String, dynamic> json
)

Implementation

factory Member.fromJsonWithChat(Chat chat, Map<String, dynamic> json) {
  return Member.fromJson(json)..set(chat);
}