fix: wrap element name inside ReCase (#1762)

This commit is contained in:
Tomaž Marhat 2022-03-20 11:36:06 +01:00 committed by GitHub
parent 231c270fb1
commit c0bd703122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class ViewParser {
}
}
return element.name.snakeCase;
return ReCase(element.name).snakeCase;
}
Future<Iterable<MoorColumn>> _parseColumns(ClassElement element) async {