to_string_helper 0.0.4 copy "to_string_helper: ^0.0.4" to clipboard
to_string_helper: ^0.0.4 copied to clipboard

discontinued
outdated

Flexibly configure output of toString method using annotations and build_runner.

example/example.md

Simple example #

import 'package:to_string_helper/to_string_helper.dart';

part 'bike.g.dart';

@ToString()
class Bike {
  final wheels = 2;

  @override
  String toString() {
    // Name of the generated method is in format _$<className>ToString()
    return _$bikeToString(this);
  }
}
1
likes
0
pub points
0%
popularity

Publisher

verified publisherzenonine.com

Flexibly configure output of toString method using annotations and build_runner.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on to_string_helper