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 [...]

example/lombok_example.dart

import 'package:lombok/lombok.dart';
import 'package:mobx/mobx.dart';

part 'lombok_example.g.dart';

@setter
class SetterExample with _$SetterExampleLombok {
  int a = 1;
  String b = '2';
  List<int> c = [3, 4, 5];
  bool _d = false;

  @observable
  int f = 6;
}
14
likes
30
pub points
35%
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