mapToSqlConstant method

  1. @override
String mapToSqlConstant(
  1. BigInt? content
)
override

Maps the given content to a sql literal that can be included in the query string.

Implementation

@override
String mapToSqlConstant(BigInt? content) => content?.toString() ?? 'NULL';