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,
      );