6 lines
No EOL
100 B
Dart
6 lines
No EOL
100 B
Dart
class ORM {
|
|
final String tableName;
|
|
const ORM([this.tableName]);
|
|
}
|
|
|
|
const ORM orm = const ORM(); |