Input$StoryContentDimensionInput constructor

Input$StoryContentDimensionInput({
  1. double? height,
  2. double? width,
  3. double? fontSize,
})

Implementation

factory Input$StoryContentDimensionInput({
  double? height,
  double? width,
  double? fontSize,
}) =>
    Input$StoryContentDimensionInput._({
      if (height != null) r'height': height,
      if (width != null) r'width': width,
      if (fontSize != null) r'fontSize': fontSize,
    });