AuthorizationEntry constructor

const AuthorizationEntry({
  1. required BigInt chainId,
  2. required ETHAddress address,
  3. required BigInt nonce,
  4. required ETHSignature signature,
})

Implementation

const AuthorizationEntry({
  required this.chainId,
  required this.address,
  required this.nonce,
  required this.signature,
});