DeleteMessageResponse.fromJson constructor
Creates a DeleteMessageResponse from JSON.
Implementation
factory DeleteMessageResponse.fromJson(Map<String, dynamic> json) {
return DeleteMessageResponse(
id: json['id'] as String,
object: json['object'] as String,
deleted: json['deleted'] as bool,
);
}