UpdateContextResponse.fromJson constructor

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

Implementation

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