BMFTitleOptions constructor

BMFTitleOptions(
  1. {Color? bgColor,
  2. Color? fontColor,
  3. String? text,
  4. int? fontSize = 48,
  5. double? titleAnchorX = 0.5,
  6. double? titleAnchorY = 1.0,
  7. double? titleRotate,
  8. int? titleXOffset,
  9. int? titleYOffset}
)

Implementation

BMFTitleOptions({
  this.bgColor,
  this.fontColor,
  this.text,
  this.fontSize = 48,
  this.titleAnchorX = 0.5,
  this.titleAnchorY = 1.0,
  this.titleRotate,
  this.titleXOffset,
  this.titleYOffset,
});