Input$StoryContentPositionInput constructor

Input$StoryContentPositionInput({
  1. double? left,
  2. double? right,
  3. double? top,
  4. double? bottom,
})

Implementation

factory Input$StoryContentPositionInput({
  double? left,
  double? right,
  double? top,
  double? bottom,
}) =>
    Input$StoryContentPositionInput._({
      if (left != null) r'left': left,
      if (right != null) r'right': right,
      if (top != null) r'top': top,
      if (bottom != null) r'bottom': bottom,
    });