Input$UpdatePictureInput constructor
Input$UpdatePictureInput({})
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,
});