fromJson method

  1. @override
  2. @nonVirtual
E fromJson(
  1. S json
)

Implementation

@override
@nonVirtual
E fromJson(S json) {
  return _useCache ? _fromJsonWithCache(json) : _fromJsonWithoutCache(json);
}