StatisticResult constructor
StatisticResult({
- Timestamp? from,
- Timestamp? to,
- Iterable<
MapEntry< ? values,String, StatisticValue> > - AccountId? accountId,
Implementation
factory StatisticResult({
$2.Timestamp? from,
$2.Timestamp? to,
$core.Iterable<$core.MapEntry<$core.String, StatisticValue>>? values,
$1.AccountId? accountId,
}) {
final result = create();
if (from != null) result.from = from;
if (to != null) result.to = to;
if (values != null) result.values.addEntries(values);
if (accountId != null) result.accountId = accountId;
return result;
}