MTitle constructor

const MTitle({
  1. Key? key,
  2. String? titleText,
  3. Widget? title,
  4. TextStyleFromTheme? style,
  5. double? spacing,
  6. Widget? child,
})

Implementation

const MTitle({
  super.key,
  this.titleText,
  this.title,
  this.style,
  this.spacing,
  this.child,
});