toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (cols != null) 'cols': cols!,
      if (data != null) 'data': data!,
      if (rows != null) 'rows': rows!,
      if (type != null) 'type': type!,
    };