V2TimApplicationProcessed.fromJson constructor

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

Implementation

V2TimApplicationProcessed.fromJson(Map<String, dynamic> json) {
  groupID = json['groupID'];
  opUser = opUser == null
      ? null
      : V2TimGroupMemberInfo.fromJson(json['opUser']);
  isAgreeJoin = json['isAgreeJoin'];
  opReason = json['opReason'];
}