parse static method

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

Implementation

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