PullBinder<T extends JSONModel> constructor

PullBinder<T extends JSONModel>(
  1. PullProxy<T> builder(
    1. PullBinder<T> binder
    )
)

Implementation

PullBinder(PullProxy<T> Function(PullBinder<T> binder) builder) : super.empty() {
  _proxy = builder(this);
}