EAEstimate constructor

EAEstimate({
  1. required String path,
  2. required String ref,
})

Constructor sets the path and ref properties

Implementation

EAEstimate({required String path, required String ref}) : super(path: path) {
  payload[EAPropertyKey.ESTIMATE] = 1;
  payload[EAPropertyKey.ESTIMATE_REF] = ref;
}