fromJson static method

Runs fromJson(
  1. dynamic value
)

Returns a new Runs instance and imports

Implementation

// ignore: prefer_constructors_over_static_methods
static Runs fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return Runs(
    links: json[r'links'] == null ? null : Links.fromJson(json[r'links']),
    runs: Run.listFromJson(json[r'runs']),
  );
}