copyWithWrapped method

IsActive$Response copyWithWrapped({
  1. Wrapped<Object?>? isActive,
})

Implementation

IsActive$Response copyWithWrapped({Wrapped<Object?>? isActive}) {
  return IsActive$Response(
      isActive: (isActive != null ? isActive.value : this.isActive));
}