UserPreferencesEditValueDialog<T> constructor Null safety

const UserPreferencesEditValueDialog<T>(
  1. {required String label,
  2. required T? initialValue,
  3. required EditorValueConverter<T?> converter,
  4. EditorValueValidator<T>? validator,
  5. dynamic keyboardType,
  6. dynamic textAlignment,
  7. dynamic key}
)

Implementation

const UserPreferencesEditValueDialog({
  required this.label,
  required this.initialValue,
  required this.converter,
  this.validator,
  this.keyboardType,
  this.textAlignment,
  Key? key,
}) : super(key: key);