EAOrder constructor

EAOrder({
  1. required String path,
  2. required String estimateRef,
})

Constructor set the path and estimateref properties

Implementation

EAOrder({required String path, required String estimateRef})
    : super(path: path, ref: estimateRef) {
  payload.removeWhere((key, _) => key == EAPropertyKey.ESTIMATE);
  setEstimateRef(estimateRef);
}