Spacing.expand constructor

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

Implementation

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