parseSubmittedCheckboxComponent method
Implementation
SubmittedCheckboxComponent parseSubmittedCheckboxComponent(
Map<String, Object?> raw) {
return SubmittedCheckboxComponent(
id: raw['id'] as int,
customId: raw['custom_id'] as String,
value: raw['value'] as bool,
);
}