JavaField constructor

JavaField(
  1. Variable field, {
  2. bool isPublic = false,
  3. bool isPrivate = false,
  4. int depth = 0,
})

Implementation

JavaField(this.field,
    {this.isPublic = false, this.isPrivate = false, int depth = 0})
    : super(depth);