checkEnabled method
Decide whether to apply this action based on the contents of context
.
Return true
if applicable.
context
の内容を元にこのアクションを適用するかどうかを決定する。
適用する場合true
を返す。
Implementation
@override
bool checkEnabled(ExecContext context) {
final value =
context.yaml.getAsMap("app").getAsMap("app_tracking_transparency");
final enabled = value.get("enable", false);
if (!enabled) {
return false;
}
return true;
}