Applies the specified color to the text, same as Text("data", style: TextStyle(color: color)
Text color(Color? color) { return Text( data ?? "", style: (style ?? const TextStyle()).copyWith(color: color), ); }