satisfiedBy method

bool satisfiedBy(
  1. Inheritable<T> inheritable
)

Specify whether given inheritable satisfies this aspect.

You can think of satisfiedBy as the "init" phase of depending on inheritable of T. For subsequent updates, didUpdateWidget is used instead.

Implementation

bool satisfiedBy(Inheritable<T> inheritable) => inheritable is Inheritable<T>;