toChecksumAggregationMethod method

ChecksumAggregationMethod toChecksumAggregationMethod()

Implementation

ChecksumAggregationMethod toChecksumAggregationMethod() {
  switch (this) {
    case 'LINEAR':
      return ChecksumAggregationMethod.linear;
  }
  throw Exception('$this is not known in enum ChecksumAggregationMethod');
}