$empty static method

$Value? $empty(
  1. Runtime runtime,
  2. $Value? target,
  3. List<$Value?> args
)

Wrapper for the TextEditingValue.empty getter

Implementation

static $Value? $empty(Runtime runtime, $Value? target, List<$Value?> args) {
  final value = TextEditingValue.empty;
  return $TextEditingValue.wrap(value);
}