mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-14 14:12:21 -06:00
feat: bugfixes, finished go_router migration, implemented better visibility of states
This commit is contained in:
@@ -7,9 +7,16 @@ class ClientCertificateFormModel {
|
||||
final Uint8List bytes;
|
||||
final String? passphrase;
|
||||
|
||||
ClientCertificateFormModel({required this.bytes, this.passphrase});
|
||||
ClientCertificateFormModel({
|
||||
required this.bytes,
|
||||
this.passphrase,
|
||||
});
|
||||
|
||||
ClientCertificateFormModel copyWith({Uint8List? bytes, String? passphrase}) {
|
||||
ClientCertificateFormModel copyWith({
|
||||
Uint8List? bytes,
|
||||
String? passphrase,
|
||||
String? filePath,
|
||||
}) {
|
||||
return ClientCertificateFormModel(
|
||||
bytes: bytes ?? this.bytes,
|
||||
passphrase: passphrase ?? this.passphrase,
|
||||
|
||||
Reference in New Issue
Block a user