Input$PictureInput constructor

Input$PictureInput({
  1. int? width,
  2. int? height,
  3. int? x,
  4. int? y,
  5. String? alt,
  6. required String baseUrl,
  7. required String path,
})

Implementation

factory Input$PictureInput({
  int? width,
  int? height,
  int? x,
  int? y,
  String? alt,
  required String baseUrl,
  required String path,
}) =>
    Input$PictureInput._({
      if (width != null) r'width': width,
      if (height != null) r'height': height,
      if (x != null) r'x': x,
      if (y != null) r'y': y,
      if (alt != null) r'alt': alt,
      r'baseUrl': baseUrl,
      r'path': path,
    });