builder static method

CryptDataBuilder builder(
  1. String id
)

Returns a CryptDataBuilder instance for id.

Parameters:

  • id : The identifier name, which must not exceed 32 characters in length and must be a sequence of characters in [a-z0-9-].

    Good identifiers should be should be explicit (human readable, not a single digit), with a length of about 5 to 10 characters.

Implementation

static CryptDataBuilder builder(String id) => CryptDataBuilder(id);