VLMImage constructor
VLMImage({})
Implementation
factory VLMImage({
$core.String? filePath,
$core.List<$core.int>? data,
$core.List<$core.int>? rawRgb,
$core.String? base64,
$core.int? width,
$core.int? height,
$core.String? mediaType,
$core.List<$core.int>? rawRgba,
}) {
final result = create();
if (filePath != null) result.filePath = filePath;
if (data != null) result.data = data;
if (rawRgb != null) result.rawRgb = rawRgb;
if (base64 != null) result.base64 = base64;
if (width != null) result.width = width;
if (height != null) result.height = height;
if (mediaType != null) result.mediaType = mediaType;
if (rawRgba != null) result.rawRgba = rawRgba;
return result;
}