Zone.fromJson constructor

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

Implementation

factory Zone.fromJson(Map<String, dynamic> json) => Zone(
      id: json['id'] as int?,
      text: json['text'] as String?,
      textNp: json['textNP'] as String?,
    );