ServiceManagementNavigationInfo.fromJson constructor

ServiceManagementNavigationInfo.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ServiceManagementNavigationInfo.fromJson(Map<String, Object?> json) {
  return ServiceManagementNavigationInfo(
    queueCategory: json[r'queueCategory'] as String?,
    queueId: (json[r'queueId'] as num?)?.toInt(),
    queueName: json[r'queueName'] as String?,
  );
}