getPinAccId method

String? getPinAccId()

Implementation

String? getPinAccId() {
  if (pinOption != null) {
    return pinOption!.pinOperatorAccount ??
        getIt<LoginService>().userInfo!.userId;
  }
  return null;
}