6 lines
92 B
Dart
6 lines
92 B
Dart
abstract class SQLWritable {
|
|
const SQLWritable();
|
|
|
|
Map<String, Object?> get sqlValue;
|
|
}
|