GroupSubject.fromJson constructor

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

Creates a GroupSubject from JSON data.

Implementation

GroupSubject.fromJson(Map<String, dynamic> json)
    : this(
        name: json['name'],
      );