color method

T color(
  1. dynamic value
)

Set text color - accepts Color object or String (token name/hex)

Implementation

T color(dynamic value) {
  return copyWith(flyStyle.copyWith(color: value));
}