$fromJSON static method

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

Wrapper for the TextEditingValue.fromJSON constructor

Implementation

static $Value? $fromJSON(
    Runtime runtime,
    $Value? thisValue,
    List<$Value?> args,
    ) {
  return $TextEditingValue.wrap(
    TextEditingValue.fromJSON((args[0]!.$reified as Map).cast()),
  );
}