active property

  1. @TagNumber.new(2)
bool get active

Active indicates whether the public key is active and used for payload encryption. Only one public key can be active at a time.

Implementation

@$pb.TagNumber(2)
$core.bool get active => $_getBF(1);
  1. @TagNumber.new(2)
set active (bool value)

Implementation

@$pb.TagNumber(2)
set active($core.bool value) => $_setBool(1, value);