textColor method

T textColor(
  1. Color color
)

Implementation

T textColor(Color color) => this.copyWith(
      style: (this.style ?? TextStyle()).copyWith(
        color: color,
      ),
    );