list property
dynamic
get
list
Implementation
dynamic get list => this.containsKey('rows')
? this['rows'] != null
? this['rows']
: []
: this['data'] != null
? this['data']
: [];