type property

String type

get type of survivor

Implementation

String get type => rawType == "worker"
    ? "special"
    : rawType.contains("manager")
        ? "manager"
        : "basic";