factory FFStoryboard_Position({ $core.double? x, $core.double? y, }) { final result = create(); if (x != null) result.x = x; if (y != null) result.y = y; return result; }