bg method

TwContainer bg(
  1. String key
)

Set background color using named token (alias for color)

Implementation

TwContainer bg(String key) {
  return TwContainer(
    child: child,
    style: _style.copyWith(color: key),
  );
}