AnimationStatic.fromJson constructor

AnimationStatic.fromJson(
  1. Map json_
)

Implementation

AnimationStatic.fromJson(core.Map json_)
    : this(
        startTimeOffset: json_.containsKey('startTimeOffset')
            ? json_['startTimeOffset'] as core.String
            : null,
        xy: json_.containsKey('xy')
            ? NormalizedCoordinate.fromJson(
                json_['xy'] as core.Map<core.String, core.dynamic>)
            : null,
      );