encodeJsonTree method

  1. @override
Object? encodeJsonTree(
  1. int instance
)
override

Converts instance to a JSON tree.

Before calling this method, you should call isInstance to check whether instance is an instance of T .

Implementation

@override
Object? encodeJsonTree(int instance) {
  if (!isJsCompatible) {
    return encodeString(instance);
  }
  return instance.toDouble();
}