ArtText constructor

ArtText({
  1. String yourText = "Your\nText",
  2. Style style = Style.style1,
  3. double fontsize = 45,
  4. TextAlign textAlign = TextAlign.center,
})

Implementation

ArtText(
    {this.yourText = "Your\nText",
    this.style = Style.style1,
    this.fontsize = 45,

    this.textAlign = TextAlign.center
    });