runWithConfig method
Runs this command with prepared configuration (options). Subclasses should override this method.
Implementation
@override
Future<void> runWithConfig(
final Configuration<DbScheduleShowOption> commandConfig,
) async {
await DbBackupCommands.showSchedule(
runner.serviceProvider.cloudApiClient,
logger: logger,
projectId: commandConfig.value(DbScheduleShowOption.projectId),
);
}