in pkgs/google_generative_ai/lib/src/api.dart [270:275]
static BlockReason _parseValue(String jsonObject) => switch (jsonObject) {
'BLOCK_REASON_UNSPECIFIED' => BlockReason.unspecified,
'SAFETY' => BlockReason.safety,
'OTHER' => BlockReason.other,
_ => throw unhandledFormat('BlockReason', jsonObject),
};