getPinAccId method

String? getPinAccId()

Implementation

String? getPinAccId() {
  if (pinOption != null) {
    return pinOption!.operatorId ??
        getIt<IMLoginService>().userInfo!.accountId;
  }
  return null;
}