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

discontinued
outdated

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)

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
0
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

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

unknown (license)

More

Packages that depend on lombok