to_string 1.2.1 to_string: ^1.2.1 copied to clipboard
A tools for generating toString method for class, based on build_runner
import 'package:to_string/to_string.dart';
part 'example.g.dart';
@ToString()
class Cat {
Cat({this.color, this.weight, this.wings});
final classify = "Animal";
String color;
double weight;
String wings;
@ToString()
bool get hasWings => wings != null;
/// toString() will return like this:
///
/// ```dart
/// 'Cat{classify: Animal, color: white, weight: 1.14, wings: null, hasWings: false}';
/// ```
@override
String toString() {
return _$CatToString(this);
}
}