mapToSql method

  1. @override
S? mapToSql(
  1. D? value
)
override

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

Implementation

@override
S? mapToSql(D? value) {
  return value == null ? null : requireMapToSql(value);
}