Animation.fromJson constructor

Animation.fromJson(
  1. Map<String, dynamic> json
)

type,exitType is contains dynamic value

Implementation

factory Animation.fromJson(Map<String, dynamic> json) => Animation(
      type: json["type"],
      exitType: json["exitType"],
    );