parse static method

TimelineEvent? parse(
  1. Map<String, dynamic>? json
)

Implementation

static TimelineEvent? parse(Map<String, dynamic>? json) =>
    json == null ? null : TimelineEvent._fromJson(json);