keyForWIDStatic static method

LocalKey? keyForWIDStatic(
  1. AFID? wid
)

Implementation

static LocalKey? keyForWIDStatic(AFID? wid) {
  if(wid == null) { return null; }
  return ValueKey<String>(wid.code);
}