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