total method

ColumnDefinition total(
  1. int total, [
  2. int places = 0
])

Specifies the precision and scale for decimal columns.

Implementation

ColumnDefinition total(int total, [int places = 0]) {
  _precisionValue = total;
  _scaleValue = places;
  return this;
}