PriorityLevelConfigurationReference.fromJson constructor

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

Creates a PriorityLevelConfigurationReference from JSON data.

Implementation

factory PriorityLevelConfigurationReference.fromJson(
    Map<String, dynamic> json) {
  final tempNameJson = json['name'];

  final String tempName = tempNameJson;

  return PriorityLevelConfigurationReference(
    name: tempName,
  );
}