GetDedicatedIpResponse.fromJson constructor

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

Implementation

factory GetDedicatedIpResponse.fromJson(Map<String, dynamic> json) {
  return GetDedicatedIpResponse(
    dedicatedIp: json['DedicatedIp'] != null
        ? DedicatedIp.fromJson(json['DedicatedIp'] as Map<String, dynamic>)
        : null,
  );
}