to_string_extension 0.5.0 copy "to_string_extension: ^0.5.0" to clipboard
to_string_extension: ^0.5.0 copied to clipboard

Uses class_extensions to generate toString for nicely looking text representation of data objects.

Description #

Uses class_extensions to generate toString for nicely looking text representation of data objects.

See also withers_extension, json_extension

Tutorial #

  1. We need a class to generate toString for.

    ${PROJECT_ROOT}/lib/model.dart
    import 'package:meta/meta.dart';
       
    @immutable
    class SomeValueClass {
      final String strVal;
      final int intVal;
    
      SomeValueClass(this.strVal, this.intVal);
    }
    
  2. For toString to work you need to add some boiler plate:

    • part 'model.g.dart';
    • annotation @ToString()
    • mixin _$SomeValueClass
    ${PROJECT_ROOT}/lib/model.dart
    import 'package:meta/meta.dart';
    import 'package:to_string_extension_annotations/annotations.dart';
       
    part 'model.g.dart';
       
    @ToString()
    @immutable
    class SomeValueClass with _$SomeValueClass {
      final String strVal;
      final int intVal;
    
      SomeValueClass(this.strVal, this.intVal);
    }
    
  3. Configure code generation. More info at build.

    ${PROJECT_ROOT}/build.yaml
    targets:
      $default:
        builders:
          class_extensions:
            generate_for:
            - lib/*.dart
    
  4. Add dependencies.

    ${PROJECT_ROOT}/pubspec.yaml
    name: example
       
    dependencies:
      to_string_extension_annotations: ^0.1.0
       
    dev_dependencies:
      build_runner: ^1.0.0
      to_string_extension: ^0.2.0
    
  5. Run code generation: pub run build_runner build. File ${PROJECT_ROOT}/lib/model.g.dart should be created.

  6. If everything goes well you should be able to print a nice looking text representation of your object.

    ${PROJECT_ROOT}/bin/main.dart
    import 'package:example/model.dart';
       
    void main() {
      print(SomeValueClass("some", 0).toString()); // prints SomeValueClass(strVal=some, intVal=0)
    }
    
  7. You can also see the example.

0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Uses class_extensions to generate toString for nicely looking text representation of data objects.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

analyzer, build, class_extensions, source_gen, to_string_extension_annotations

More

Packages that depend on to_string_extension