AnimationStatic.fromJson constructor

AnimationStatic.fromJson(
  1. 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,
    );