parseSubmittedLabelComponent method
Implementation
SubmittedLabelComponent parseSubmittedLabelComponent(Map<String, Object?> raw,
{Snowflake? guildId}) {
return SubmittedLabelComponent(
id: raw['id'] as int,
component: parseSubmittedComponent(
raw['component'] as Map<String, Object?>,
guildId: guildId),
);
}