Input$UpdatePictureInput constructor

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

Implementation

factory Input$UpdatePictureInput({
  int? width,
  int? height,
  int? x,
  int? y,
  String? alt,
  String? baseUrl,
  String? path,
}) =>
    Input$UpdatePictureInput._({
      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,
      if (baseUrl != null) r'baseUrl': baseUrl,
      if (path != null) r'path': path,
    });