supports method

  1. @override
bool supports(
  1. ModuleProfile profile
)

Implementation

@override
bool supports(ModuleProfile profile) {
  return switch (profile.stateManager) {
    StateManager.bloc => true,
    StateManager.riverpod => true,
  };
}