copyWith method

AceEntity copyWith({
  1. required int index,
  2. required int time,
})

Implementation

AceEntity copyWith({required int index, required int time}) {
  AceEntity entity = AceEntity(
      index: index,
      open: open,
      high: high,
      low: low,
      close: close,
      volume: volume,
      amount: amount,
      time: time);
  return entity;
}