bottom40 static method

Positioned bottom40({
  1. Key? key,
  2. required Widget child,
})

Constructs a Positioned widget with bottom: 160.0

Implementation

static Positioned bottom40({Key? key, required Widget child}) {
  return Positioned(
    key: key,
    child: child,
    bottom: StiloConfig.space40,
  );
}