FunctionHeader constructor

FunctionHeader(
  1. {int expire,
  2. BigInt time,
  3. String pubkey}
)

Implementation

FunctionHeader({
  int expire,
  BigInt time,
  String pubkey,
}) {
  _expire = expire;
  _time = time;
  _pubkey = pubkey;
}