copyWithWrapped method

BlackLevel$Response copyWithWrapped({
  1. Wrapped<int?>? blackLevel,
})

Implementation

BlackLevel$Response copyWithWrapped({Wrapped<int?>? blackLevel}) {
  return BlackLevel$Response(
      blackLevel: (blackLevel != null ? blackLevel.value : this.blackLevel));
}