parse static method

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

Implementation

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