asFact method

Fact? asFact()

Implementation

Fact? asFact() {
  if (this is Fact) return (this as Fact);
  return null;
}