Sdk constructor
Implementation
factory Sdk({
SdkType? type,
$core.String? major,
$core.String? minor,
$core.String? patch,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (major != null) {
$result.major = major;
}
if (minor != null) {
$result.minor = minor;
}
if (patch != null) {
$result.patch = patch;
}
return $result;
}