DeleteContextResponse.fromJson constructor

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

Implementation

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