PosClient constructor

PosClient(
  1. String domain,
  2. String registryKey
)

Implementation

PosClient(String domain, String registryKey)
    : super(domain: domain, registryKey: registryKey) {
  _pointOfSaleRepository = PointOfSaleRepositoryImpl(
    PointOfSaleRemoteDataSourcesImpl(domain),
    registryKey,
  );
}