get<T extends InteractiveComponent> method
Implementation
@override
T get<T extends InteractiveComponent>(String customId) =>
_components.values.firstWhere((e) => e.customId == customId,
orElse: () => throw Exception('Cannot found component')) as T;