Dashboard.fromJson constructor

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

Implementation

factory Dashboard.fromJson(Map<String, dynamic> json) {
  return Dashboard(
      id: json['id'],
      name: json['name'],
      created: json['created'],
      displayName: json['displayName'],
      dirty: json['dirty']);
}