toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (detailType != null) 'detailType': detailType!,
      if (filteredBidDetailRows != null)
        'filteredBidDetailRows':
            filteredBidDetailRows!.map((value) => value.toJson()).toList(),
      if (nextPageToken != null) 'nextPageToken': nextPageToken!,
    };