NativeLabel constructor

const NativeLabel(
  1. String text, {
  2. BoxDecoration? decoration,
  3. TextStyle? style,
  4. double? kern,
  5. double? lineSpacing,
  6. double edgeInsetTop = 0.0,
  7. double edgeInsetBottom = 0.0,
  8. double edgeInsetLeft = 0.0,
  9. double edgeInsetRight = 0.0,
  10. bool copyable = false,
  11. String? fontName,
  12. Key? key,
})

Implementation

const NativeLabel(this.text,
    {this.decoration,
    this.style,
    this.kern,
    this.lineSpacing,
    this.edgeInsetTop = 0.0,
    this.edgeInsetBottom = 0.0,
    this.edgeInsetLeft = 0.0,
    this.edgeInsetRight = 0.0,
    this.copyable = false,
    this.fontName,
    Key? key})
    : super(key: key);