parse static method

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

Implementation

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