CustomPosition.bottomLeft constructor

const CustomPosition.bottomLeft({
  1. double bottomOffset = 0,
  2. double leftOffset = 0,
})

Create a position anchored to the bottom-left with offsets

Implementation

const CustomPosition.bottomLeft(
    {double bottomOffset = 0, double leftOffset = 0,})
    : bottom = bottomOffset,
      left = leftOffset,
      top = null,
      right = null;