CustomPosition.bottomRight constructor

const CustomPosition.bottomRight({
  1. double bottomOffset = 0,
  2. double rightOffset = 0,
})

Create a position anchored to the bottom-right with offsets

Implementation

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