GifyTextMessage constructor

const GifyTextMessage({
  1. required String text,
  2. int fontSize = 10,
  3. Color fontColor = Colors.black,
  4. double x = 0.0,
  5. double y = 0.0,
})

Implementation

const GifyTextMessage({
  required this.text,
  this.fontSize = 10,
  this.fontColor = Colors.black,
  this.x = 0.0,
  this.y = 0.0,
});