SimpleOverlayPosition.bottomRight constructor

SimpleOverlayPosition.bottomRight({
  1. double? bottom,
  2. double? right,
})

Implementation

factory SimpleOverlayPosition.bottomRight({
  double? bottom,
  double? right,
}) {
  return SimpleOverlayPosition(
    bottom: bottom ?? 0,
    right: right ?? 0,
  );
}