toSql method Null safety

String toSql(
  1. List<T> value
)
override

Map a value from an object in Dart into something that will be understood by the database.

Implementation

@override
String toSql(List<T> value) => jsonEncode(value);