FloatActionButtonText constructor

const FloatActionButtonText({
  1. Key? key,
  2. IconData? icon,
  3. String? text,
  4. double textLeft = -110,
  5. double textTop = -10,
  6. VoidCallback? onPressed,
})

Implementation

const FloatActionButtonText({
  Key? key,
  this.icon,
  this.text,
  this.textLeft = -110,
  this.textTop = -10,
  this.onPressed,
}) : super(key: key);