mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 14:56:20 +01:00
15 lines
656 B
Dart
15 lines
656 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'account.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// ToStringGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
extension _$AccountToString on Account {
|
||
|
String _$toString() {
|
||
|
// ignore: unnecessary_string_interpolations
|
||
|
return "Account {id: $id, scheme: $scheme, address: ${kDebugMode ? address : '***'}, userId: ${kDebugMode ? userId : '***'}, username2: ${kDebugMode ? username2 : '***'}, password: ${password.isNotEmpty ? (kDebugMode ? password : '***') : null}, _roots: ${_roots.toReadableString()}}";
|
||
|
}
|
||
|
}
|