copyWith method

BulkResponse copyWith({
  1. BulkResponse$Data? data,
})

Implementation

BulkResponse copyWith({BulkResponse$Data? data}) {
  return BulkResponse(data: data ?? this.data);
}