build method

  1. @override
_$ActionsDialogsOpenDialog build()
override

Builds.

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

Implementation

@override
_$ActionsDialogsOpenDialog build() {
  _$ActionsDialogsOpenDialog _$result;
  try {
    _$result = _$v ??
        new _$ActionsDialogsOpenDialog._(
            title: BuiltValueNullFieldError.checkNotNull(
                title, 'ActionsDialogsOpenDialog', 'title'),
            elements: elements.build(),
            callbackId: callbackId,
            introductionText: introductionText,
            submitLabel: submitLabel,
            notifyOnCancel: notifyOnCancel,
            state: state);
  } catch (_) {
    late String _$failedField;
    try {
      _$failedField = 'elements';
      elements.build();
    } catch (e) {
      throw new BuiltValueNestedFieldError(
          'ActionsDialogsOpenDialog', _$failedField, e.toString());
    }
    rethrow;
  }
  replace(_$result);
  return _$result;
}