ProtoImage constructor
Implementation
factory ProtoImage({
$core.int? image,
$core.int? slot,
$core.List<$core.int>? hash,
$core.List<$core.int>? data,
}) {
final result = create();
if (image != null) result.image = image;
if (slot != null) result.slot = slot;
if (hash != null) result.hash = hash;
if (data != null) result.data = data;
return result;
}