ValidateLicenseKeyRequestMeta constructor

ValidateLicenseKeyRequestMeta({
  1. required String key,
  2. String? nonce,
  3. ValidateLicenseRequestMetaScope? scope,
})

Returns a new ValidateLicenseKeyRequestMeta instance.

Implementation

ValidateLicenseKeyRequestMeta({
  required this.key,
  this.nonce,
  this.scope,
});