NetworkModel.fromJson constructor

NetworkModel.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory NetworkModel.fromJson(Map<String, dynamic> json) => NetworkModel(
  abbreviation: json['abbreviation'],
  client_ip: json['client_ip'],
  datetime: json['datetime'],
  day_of_week: json['day_of_week'],
  day_of_year: json['day_of_year'],
  dst: json['dst'],
  raw_offset: json['raw_offset'],
  utc_datetime: json['utc_datetime'],
  utc_offset: json['utc_offset'],
  week_number: json['week_number'],
);