build method

  1. @override
_$InlineObject5 build()
override

Builds.

The implementation of this method will be generated for you by the built_value generator.

Implementation

@override
_$InlineObject5 build() {
  _$InlineObject5 _$result;
  try {
    _$result = _$v ??
        new _$InlineObject5._(
            email: email,
            username: username,
            firstName: firstName,
            lastName: lastName,
            nickname: nickname,
            locale: locale,
            position: position,
            props: props,
            notifyProps: _notifyProps?.build());
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'notifyProps';
      _notifyProps?.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'InlineObject5', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}