implemented data sources with prisma in go
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
extension Let<T> on T? {
|
||||
R? let<R>(R Function(T it) action) {
|
||||
if (this != null) {
|
||||
return action(this!);
|
||||
return action(this as T);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user