ListViewParams constructor
ListViewParams({})
Implementation
ListViewParams(
{this.scrollDirection,
this.reverse,
this.shrinkWrap,
this.cacheExtent,
this.padding,
this.itemExtent,
this.children,
this.pageSize,
this.loadMoreUrl,
this.isDemo,
this.tempChild,
this.dataKey}) {
// assert(this.children != null || this.tempChild != null,
// "you must set one of [children] or [tempChild]");
// if (this.tempChild != null) {
// assert(this.dataKey != null && this.children == null,
// "you must set [dataKey] and [children] not to set");
// }
// if (this.children != null) {
// assert(this.dataKey == null && this.tempChild == null,
// "do not set any dataKey and tempChild");
// }
}