Pocket constructor

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

Implementation

Pocket(String domain, String registryKey)
    : super(domain: domain, registryKey: registryKey) {
  _pocketRepository =
      PocketRepositoryImpl(registryKey, PocketRemoteDataSourcesImpl(domain));
}