Spacing.expand constructor

const Spacing.expand({
  1. double mainAxisExtent = defaultSpacing,
  2. Key? key,
  3. Color? color,
})

Implementation

const Spacing.expand({
  double mainAxisExtent = defaultSpacing,
  Key? key,
  Color? color,
}) : this(
        key: key,
        mainAxisExtent: mainAxisExtent,
        crossAxisExtent: double.infinity,
        color: color,
      );