copyWith method

ContentStateResponse copyWith({
  1. ContentState? contentState,
  2. String? lastUpdated,
})

Implementation

ContentStateResponse copyWith(
    {ContentState? contentState, String? lastUpdated}) {
  return ContentStateResponse(
    contentState: contentState ?? this.contentState,
    lastUpdated: lastUpdated ?? this.lastUpdated,
  );
}