bottom14 static method

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

Constructs a Positioned widget with bottom: 56.0

Implementation

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