EAEstimate constructor Null safety

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

Implementation

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