$Destination.fromJson constructor

$Destination.fromJson(
  1. Map json_
)

Implementation

$Destination.fromJson(core.Map json_)
  : this(
      host: json_['host'] as core.String?,
      port: json_['port'] as core.int?,
      serviceAttachment: json_['serviceAttachment'] as core.String?,
    );