dispatched method

  1. @override
bool dispatched(
  1. covariant dynamic t
)
override

checks if a given var's runtimeType is of the dispatching (related) type. the general implementation should be the same throughout all mediums and formats

Implementation

@override
bool dispatched(covariant dynamic t) {
  return t.runtimeType == SingleImgJob;
}