EACart constructor

EACart({
  1. required String path,
})

Constructor sets the path property and scart flag

Implementation

EACart({required String path}) : super(path: path) {
  payload[EAPropertyKey.CART_SCART] = 1;
}