ResourceLevelServiceConfig constructor

ResourceLevelServiceConfig({
  1. String? type,
  2. Struct? attributes,
})

Implementation

factory ResourceLevelServiceConfig({
  $core.String? type,
  $43.Struct? attributes,
}) {
  final $result = create();
  if (type != null) {
    $result.type = type;
  }
  if (attributes != null) {
    $result.attributes = attributes;
  }
  return $result;
}