toMigrationTypeValue method
Implementation
MigrationTypeValue toMigrationTypeValue() {
switch (this) {
case 'full-load':
return MigrationTypeValue.fullLoad;
case 'cdc':
return MigrationTypeValue.cdc;
case 'full-load-and-cdc':
return MigrationTypeValue.fullLoadAndCdc;
}
throw Exception('$this is not known in enum MigrationTypeValue');
}