Container constructor
Implementation
factory Container({
$core.String? key,
$core.String? uri,
$core.String? framework,
$core.String? description,
$52.Timestamp? eol,
}) {
final $result = create();
if (key != null) {
$result.key = key;
}
if (uri != null) {
$result.uri = uri;
}
if (framework != null) {
$result.framework = framework;
}
if (description != null) {
$result.description = description;
}
if (eol != null) {
$result.eol = eol;
}
return $result;
}