ChannelEgressEndpoint.fromJson constructor

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

Implementation

factory ChannelEgressEndpoint.fromJson(Map<String, dynamic> json) {
  return ChannelEgressEndpoint(
    sourceIp: json['sourceIp'] as String?,
  );
}