LocalizationOptions constructor

LocalizationOptions(
  1. LocalisationCode languageCode, {
  2. String ok = "Ok",
  3. String solid = "Simple",
  4. String gradient = "Dégradé",
  5. String cancel = "Cancel",
  6. String selectColor = "Select color",
  7. String linearGradient = "Linear gradient",
  8. String radialGradient = "Radial gradient",
  9. String sweepGradient = "Sweep gradient",
  10. String startingPoint = "Select starting point",
  11. String changeColor = "Color added. Click on colored disc to change color.",
  12. String endPoint = "Select end point",
})

Implementation

LocalizationOptions(this.languageCode,
    {this.ok = "Ok",
    this.solid = "Simple",
    this.gradient = "Dégradé",
    this.cancel = "Cancel",
    this.selectColor = "Select color",
    this.linearGradient = "Linear gradient",
    this.radialGradient = "Radial gradient",
    this.sweepGradient = "Sweep gradient",
    this.startingPoint = "Select starting point",
    this.changeColor = "Color added. Click on colored disc to change color.",
    this.endPoint = "Select end point"});