textStyle property

TextStyle get textStyle

Implementation

TextStyle get textStyle =>
    const TextStyle(color: Colors.white, fontSize: 24, shadows: [
      Shadow(
        color: Colors.black,
        offset: Offset(.5, .5),
        blurRadius: 2,
      ),
    ]);