copyWith method

FoundWebApp copyWith({
  1. WebApp? webApp,
  2. bool? requestWriteAccess,
  3. bool? skipConfirmation,
  4. dynamic extra,
  5. int? clientId,
})

Implementation

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