mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
19 lines
562 B
Dart
19 lines
562 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'progress_util.dart';
|
|
|
|
// **************************************************************************
|
|
// ToStringGenerator
|
|
// **************************************************************************
|
|
|
|
extension _$IntProgressToString on IntProgress {
|
|
String _$toString() {
|
|
return "IntProgress {max: $max, step: $step, _current: $_current}";
|
|
}
|
|
}
|
|
|
|
extension _$ProgressToString on Progress {
|
|
String _$toString() {
|
|
return "Progress {progress: $progress, ${text == null ? "" : "text: $text, "}}";
|
|
}
|
|
}
|