HeraService constructor

HeraService({
  1. required ServiceClient grpcUserClient,
  2. required dynamic authorize,
  3. required String jwtPublicKey,
  4. required SharedPreferences sharedPreferences,
  5. required String namespace,
  6. required bool debug,
})

Implementation

HeraService({
  required this.grpcUserClient,
  required Authorize authorize,
  required this.jwtPublicKey,
  required this.sharedPreferences,
  required this.namespace,
  required this.debug,
}) {
  _authorize = authorize;
}