data property

dynamic get data

Implementation

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