backgroundColor static method

FloretParent<ColoredBox> backgroundColor(
  1. Color color
)

Implementation

static FloretParent<ColoredBox> backgroundColor(Color color) =>
    (Widget child) => ColoredBox(
          child: child,
          color: color,
        );