AlertLocalization constructor

const AlertLocalization({
  1. String ok = "OK",
  2. String cancel = "Cancel",
  3. String loading = "Loading...",
  4. String error = "Error",
})

Implementation

const AlertLocalization({
  this.ok = "OK",
  this.cancel = "Cancel",
  this.loading = "Loading...",
  this.error = "Error",
});