parse static method

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

Implementation

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