mapToSqlVariable method

  1. @override
int? mapToSqlVariable(
  1. int? content
)
override

Maps the content to a value that we can send together with a prepared statement to represent the given value.

Implementation

@override
int? mapToSqlVariable(int? content) {
  return content;
}