config method
Implementation
void config(Flourish flourish) {
switch (flourish.language.name) {
case "english":
this.title = 'Oops, something went wrong!';
this.description = 'Please, contact us through support.';
break;
case "spanish":
this.title = 'Huy! Algo saliĆ³ mal.';
this.description = 'Por favor, contacta con soporte.';
break;
case "portugues":
this.title = 'Opa, algo deu errado.';
this.description = 'Por favor, contate o nosso suporte.';
break;
}
}