copyWith method

FoundWebApp copyWith({
  1. WebApp? webApp,
  2. bool? requestWriteAccess,
  3. bool? skipConfirmation,
})

Implementation

FoundWebApp copyWith({
  WebApp? webApp,
  bool? requestWriteAccess,
  bool? skipConfirmation,
}) => FoundWebApp(
  webApp: webApp ?? this.webApp,
  requestWriteAccess: requestWriteAccess ?? this.requestWriteAccess,
  skipConfirmation: skipConfirmation ?? this.skipConfirmation,
);