LiveDataResult constructor

LiveDataResult({
  1. int? totalNum,
  2. List<Product>? list,
  3. String? pageId,
})

Implementation

LiveDataResult({
  this.totalNum,
  this.list,
  this.pageId,
});