deleteType method

  1. @override
void deleteType(
  1. EmblemType emblemType
)
override

Removes emblemType from the active emblem types and from all emblem types list

Implementation

@override
void deleteType(EmblemType emblemType) {
  final foundEmblemType = getType(emblemType.getEmblemType());
  _emblemTypes.remove(foundEmblemType);
  _activeEmblemTypes.remove(foundEmblemType);
}