NEInjectedAuthorization constructor

NEInjectedAuthorization({
  1. required String appKey,
  2. required String user,
  3. required String token,
})

Implementation

NEInjectedAuthorization({
  required this.appKey,
  required this.user,
  required this.token,
}) : assert(appKey.isNotEmpty && user.isNotEmpty && token.isNotEmpty);