Caption constructor

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

Implementation

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