copyWith method

MultiDocumentResponseDailyReadinessModel copyWith({
  1. List<DailyReadinessModel>? data,
  2. dynamic nextToken,
})

Implementation

MultiDocumentResponseDailyReadinessModel copyWith(
    {List<DailyReadinessModel>? data, dynamic nextToken}) {
  return MultiDocumentResponseDailyReadinessModel(
      data: data ?? this.data, nextToken: nextToken ?? this.nextToken);
}