Skip to content

Instantly share code, notes, and snippets.

@felipecastrosales
Last active April 25, 2022 01:35
Show Gist options
  • Save felipecastrosales/104555bae7449d3f1a2da79bf8c788c4 to your computer and use it in GitHub Desktop.
Save felipecastrosales/104555bae7449d3f1a2da79bf8c788c4 to your computer and use it in GitHub Desktop.
Never Type
Never relationIsNotDefined() {
throw ArgumentError('Relação não definida');
}
void main() {
String? relation;
String? checkRelation() {
if (relation != null) {
return relation;
} else {
relationIsNotDefined();
}
}
checkRelation();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment