toMap method

  1. @override
Map toMap ()

BaseResult => map

Implementation

@override
Map toMap() {
  Map map = super.toMap();
  map['cacheInfoResult'] =
      this.cacheInfoResult?.map((e) => e?.toMap())?.toList();
  return map;
}