AnimationEnd.fromJson constructor

AnimationEnd.fromJson(
  1. Map json_
)

Implementation

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