AsTextView constructor

AsTextView({
  1. String? text,
  2. double? fsize,
  3. bool? isbold,
  4. Color? color,
  5. Color? backgroundColor,
})

Implementation

AsTextView(
  {
    this.text,
    this.fsize,
    this.isbold,
    this.color,
    this.backgroundColor,
  }
);