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;
}