toBackfillMode method

BackfillMode toBackfillMode()

Implementation

BackfillMode toBackfillMode() {
  switch (this) {
    case 'AUTOMATIC':
      return BackfillMode.automatic;
    case 'MANUAL':
      return BackfillMode.manual;
  }
  throw Exception('$this is not known in enum BackfillMode');
}