Groups.fromJson constructor

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

Implementation

Groups.fromJson(Map<String, dynamic> json) {
  group = json['group'] != null ? new Group.fromJson(json['group']) : null;
  type = json['type'];
  time = json['time'];
}