AppsSecretCreateOptions constructor

const AppsSecretCreateOptions({
  1. List<String>? expand,
  2. DateTime? expiresAt,
  3. required String name,
  4. required String payload,
  5. required SecretServiceResourceScope scope,
})

Implementation

const AppsSecretCreateOptions({
  this.expand,
  this.expiresAt,
  required this.name,
  required this.payload,
  required this.scope,
});