EpicUpdateBean constructor

EpicUpdateBean({
  1. String? name,
  2. String? summary,
  3. EpicUpdateBeanColor? color,
  4. bool? done,
})

Implementation

EpicUpdateBean({this.name, this.summary, this.color, bool? done})
    : done = done ?? false;