fromJson static method
Implementation
static HintAnimation fromJson(dynamic json) {
return HintAnimation(
hideAnimation: json.containsKey('hideAnimation') ? json['hideAnimation'] : null ,
animationIconSize: json.containsKey('animationIconSize') ? json['animationIconSize'].toInt() as int : null,
hintGradientColor: json.containsKey('hintGradientColor') ? json['hintGradientColor'] : null,
hintGradientOpacity: json.containsKey('hintGradientOpacity') ? json['hintGradientOpacity'].toInt() : null,
);
}