PreprocessingConfig_Pad constructor
PreprocessingConfig_Pad(
{ - int? topPixels,
- int? bottomPixels,
- int? leftPixels,
- int? rightPixels,
})
Implementation
factory PreprocessingConfig_Pad({
$core.int? topPixels,
$core.int? bottomPixels,
$core.int? leftPixels,
$core.int? rightPixels,
}) {
final $result = create();
if (topPixels != null) {
$result.topPixels = topPixels;
}
if (bottomPixels != null) {
$result.bottomPixels = bottomPixels;
}
if (leftPixels != null) {
$result.leftPixels = leftPixels;
}
if (rightPixels != null) {
$result.rightPixels = rightPixels;
}
return $result;
}