TextContent constructor

const TextContent({
  1. required String text,
  2. double fontSize = 16,
  3. TextAlign textAlign = TextAlign.center,
  4. String? id,
})

Implementation

const TextContent({
  required this.text,
  this.fontSize = 16,
  this.textAlign = TextAlign.center,
  super.id,
}) : super(contentType: type);