CreateContextResponse.fromJson constructor

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

Implementation

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