SecretKeySelector constructor

const SecretKeySelector({
  1. required String key,
  2. String? name,
  3. bool? optional,
})

The main constructor.

Implementation

const SecretKeySelector({
  required this.key,
  this.name,
  this.optional,
});