DeleteComment constructor

const DeleteComment({
  1. @JsonKey.new(name: 'comment_id') required int commentId,
  2. required bool deleted,
  3. required String auth,
})

Implementation

const factory DeleteComment({@JsonKey(name: 'comment_id') required int commentId, required bool deleted, required String auth}) = _DeleteComment;