Dashboard.fromJson constructor

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

Implementation

Dashboard.fromJson(Map<String, dynamic> json)
    : configuration = json['configuration'],
      externalId = json['externalId'] != null
          ? DashboardId.fromJson(json['externalId'])
          : null,
      super.fromJson(json);