EmbeddedDestinationSettings.fromJson constructor

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

Implementation

factory EmbeddedDestinationSettings.fromJson(Map<String, dynamic> json) {
  return EmbeddedDestinationSettings(
    destination608ChannelNumber: json['destination608ChannelNumber'] as int?,
    destination708ServiceNumber: json['destination708ServiceNumber'] as int?,
  );
}