NumberTag constructor

const NumberTag({
  1. Key? key,
  2. String? title,
  3. Color color = darkBlue,
})

Implementation

const NumberTag({
  Key? key,
  this.title,
  this.color = darkBlue,
}) : super(key: key);