isSigner static method

bool isSigner(
  1. Object object
)

Returns true if an only if object is a Signer.

Implementation

static bool isSigner(Object object) {
  if (object is Interop)
    return object is Signer || _SignerImpl.isSigner(object.impl);
  return false;
}