SubtitleContainer constructor

const SubtitleContainer({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. String? subtitle,
  5. Widget? child,
  6. bool inverted = false,
})

Implementation

const SubtitleContainer({
  super.key,
  this.height,
  this.width,
  this.subtitle,
  this.child,
  this.inverted = false,
});