LoggingConfig constructor

LoggingConfig({
  1. bool? enableStackdriverLogging,
})

Implementation

factory LoggingConfig({
  $core.bool? enableStackdriverLogging,
}) {
  final _result = create();
  if (enableStackdriverLogging != null) {
    _result.enableStackdriverLogging = enableStackdriverLogging;
  }
  return _result;
}