trueCall method

void trueCall(
  1. VoidCallback call
)

Implementation

void trueCall(VoidCallback call) {
  if (this) {
    call.call();
  }
}