FDialogTip constructor

const FDialogTip({
  1. Key? key,
  2. double? width = 240,
  3. double? height = 340,
  4. String? content,
})

Implementation

const FDialogTip({
  super.key,
  this.width = 240,
  this.height = 340,
  this.content,
});