ResourceInfo constructor
ResourceInfo({
- String? id,
- HealthStatus? status,
- Timestamp? time,
- Iterable<
ResourceInfo> ? sub,
Implementation
factory ResourceInfo({
$core.String? id,
HealthStatus? status,
$2.Timestamp? time,
$core.Iterable<ResourceInfo>? sub,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (status != null) {
$result.status = status;
}
if (time != null) {
$result.time = time;
}
if (sub != null) {
$result.sub.addAll(sub);
}
return $result;
}