SecurityAnimation.fromJson constructor

SecurityAnimation.fromJson(
  1. Map json_
)

Implementation

SecurityAnimation.fromJson(core.Map json_)
    : this(
        animationType: json_.containsKey('animationType')
            ? json_['animationType'] as core.String
            : null,
      );