bottom36Neg static method

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

Constructs a Positioned widget with bottom: -144.0

Implementation

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