nc-photos/app/lib/progress_util.g.dart

22 lines
700 B
Dart
Raw Normal View History

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'progress_util.dart';
// **************************************************************************
// ToStringGenerator
// **************************************************************************
extension _$IntProgressToString on IntProgress {
String _$toString() {
2022-12-08 16:39:13 +01:00
// ignore: unnecessary_string_interpolations
return "IntProgress {max: $max, step: ${step.toStringAsFixed(3)}, _current: $_current}";
}
}
extension _$ProgressToString on Progress {
String _$toString() {
2022-12-08 16:39:13 +01:00
// ignore: unnecessary_string_interpolations
return "Progress {progress: ${progress.toStringAsFixed(3)}, ${text == null ? "" : "text: $text"}}";
}
}