oneModel method
Implementation
Future<M?> oneModel({Where? where, Object? groupBy, Object? having, Object? window, Object? orderBy, SQLExecutor? executor}) async {
final ls = await listModel(where: where, groupBy: groupBy, having: having, window: window, orderBy: orderBy, limit: 1, executor: executor);
return ls.firstOrNull;
}