Animation.fromJson constructor
Animation.fromJson(
- Map json_
Implementation
Animation.fromJson(core.Map json_)
: this(
animationEnd: json_.containsKey('animationEnd')
? AnimationEnd.fromJson(
json_['animationEnd'] as core.Map<core.String, core.dynamic>)
: null,
animationFade: json_.containsKey('animationFade')
? AnimationFade.fromJson(
json_['animationFade'] as core.Map<core.String, core.dynamic>)
: null,
animationStatic: json_.containsKey('animationStatic')
? AnimationStatic.fromJson(json_['animationStatic']
as core.Map<core.String, core.dynamic>)
: null,
);