Timezone.fromJson constructor

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

Implementation

Timezone.fromJson(Map<String,dynamic> json)
  : value = json['value'],
    abbr = json['abbr'],
    offset = json['offset'],
    isdst = json['isdst'],
    text = json['text'],
    utc = json['utc'];