username property

String username

The user associated with the credential.

Implementation

String get username {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISCredential_getUsername(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}