copyWith method

ItemImportResponse copyWith({
  1. String? accessToken,
  2. String? requestId,
})

Implementation

ItemImportResponse copyWith({String? accessToken, String? requestId}) {
  return ItemImportResponse(
      accessToken: accessToken ?? this.accessToken,
      requestId: requestId ?? this.requestId);
}