lombok 0.0.5 copy "lombok: ^0.0.5" to clipboard
lombok: ^0.0.5 copied to clipboard

discontinued

Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equals method again, with one annotation your class has [...]

Lombok (Dart Version) #

Reference #

lombok (Java)

Feature #

  • @data / @Data()

    • full configuration
    • toString
    • @EqualAndHashCode
  • @getter / @Getter()

    • full configuration
    • support use on field
  • @setter / @Getter()

    • full configuration
    • support use on field
  • @equalsAndHashCode / @EqualsAndHashCode()

    • full configuration
  • @toString / @ToString()

    • full configuration
  • Other

    • @NonNull
    • @Cleanup
    • @NoArgsConstructor, @RequiredArgsConstructor, @AllArgsConstructor
    • @Value
    • @Builder
    • @SneakyThrows
    • @Synchronized
    • @Log
    • experimental
    • etc.

Usage #

A simple usage example:

// file: some_class.dart

part 'some_class.g.dart';

@data
class SomeClass with _$SomeClassLombok {
  int counter = 1;
}

// Equal to
class SomeClass {
  int counter = 1;
  
  int getCounter() {
    return counter;
  }
  
  void setCounter(int counter) {
    this.counter = counter;
  }
}

14
likes
30
pub points
38%
popularity

Publisher

unverified uploader

Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

analyzer, build, mobx, mustache4dart, source_gen

More

Packages that depend on lombok