DescribeEntityResponse.fromJson constructor
Implementation
factory DescribeEntityResponse.fromJson(Map<String, dynamic> json) {
return DescribeEntityResponse(
details: json['Details'] as String?,
entityArn: json['EntityArn'] as String?,
entityIdentifier: json['EntityIdentifier'] as String?,
entityType: json['EntityType'] as String?,
lastModifiedDate: json['LastModifiedDate'] as String?,
);
}