fromJSON static method
Implementation
static GroupDeletionReport fromJSON(Map<String, dynamic> data) {
return GroupDeletionReport(
type: (data["type"] as String),
id: (data["id"] as String),
server: (data["server"] as String)
);
}
static GroupDeletionReport fromJSON(Map<String, dynamic> data) {
return GroupDeletionReport(
type: (data["type"] as String),
id: (data["id"] as String),
server: (data["server"] as String)
);
}