copyWith method
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;
}