NovelEntity constructor

NovelEntity({
  1. required bool code,
  2. String? msg,
  3. List<NovelEntityData>? data,
})

Implementation

NovelEntity({
  required this.code,
  this.msg,
  this.data,
});