AnimationStatic.fromJson constructor
AnimationStatic.fromJson(
- Map _json
Implementation
AnimationStatic.fromJson(core.Map _json)
: this(
startTimeOffset: _json.containsKey('startTimeOffset')
? _json['startTimeOffset'] as core.String
: null,
xy: _json.containsKey('xy')
? NormalizedCoordinate.fromJson(
_json['xy'] as core.Map<core.String, core.dynamic>)
: null,
);