LocalizationModel constructor
LocalizationModel({})
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,
});