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