factory SimpleOverlayPosition.topLeft({ double? top, double? left, }) { return SimpleOverlayPosition( top: top ?? 0, left: left ?? 0, ); }