computeOperation method

  1. @override
String? computeOperation(
  1. Object? json
)
override

Implementation

@override
String? computeOperation(Object? json) {
  if (json == null) return null;
  var s = TAsString(parameters).transform(json) as String;
  return s.trim();
}