PadlockHint constructor

const PadlockHint({
  1. String title = kDefaultPadlockHintTitle,
  2. required String text,
})

Creates a new PadlockHint instance.

Implementation

const PadlockHint({
  this.title = kDefaultPadlockHintTitle,
  required this.text,
});