bindings property
All meta information about T necessary to plug arbitrary data types
into a Repository.
Implementation
Bindings<T> get bindings {
assert(
_bindings != null,
'You must either pass a Bindings object to the constructor or set it '
'later, which the SourceList does automatically.',
);
return _bindings!;
}
Implementation
set bindings(Bindings<T> val) => _bindings = val;