ChatBackground.fromJson constructor
Creates a ChatBackground object from JSON.
Implementation
factory ChatBackground.fromJson(Map<String, dynamic> json) {
return ChatBackground(
type: BackgroundType.create(json['type']),
);
}
Creates a ChatBackground object from JSON.
factory ChatBackground.fromJson(Map<String, dynamic> json) {
return ChatBackground(
type: BackgroundType.create(json['type']),
);
}