CreateNetworkProfileResponse.fromJson constructor

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

Implementation

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