LocalizationModel constructor

LocalizationModel({
  1. required String promptDialogTitle,
  2. required String promptDialogReason,
  3. required String cancelButtonTitle,
})

Creates a new instance of LocalizationModel with the provided strings.

The promptDialogTitle, promptDialogReason, and cancelButtonTitle must not be null.

Implementation

LocalizationModel({
  required this.promptDialogTitle,
  required this.promptDialogReason,
  required this.cancelButtonTitle,
});