LayerDimension constructor
Implementation
factory LayerDimension({
$core.int? numBatches,
$core.int? height,
$core.int? width,
$core.int? channels,
}) {
final $result = create();
if (numBatches != null) {
$result.numBatches = numBatches;
}
if (height != null) {
$result.height = height;
}
if (width != null) {
$result.width = width;
}
if (channels != null) {
$result.channels = channels;
}
return $result;
}