formatValue method

  1. @protected
String formatValue(
  1. dynamic value
)

Implementation

@protected
String formatValue(
  dynamic value,
) {
  if (value is num) return value.toString();
  return "'$value'";
}