build method
Builds.
The implementation of this method will be generated for you by the built_value generator.
Implementation
@override
_$CardDetails build() {
_$CardDetails _$result;
try {
_$result = _$v ??
new _$CardDetails._(
nonce: BuiltValueNullFieldError.checkNotNull(
nonce, 'CardDetails', 'nonce'),
card: card.build());
} catch (_) {
late String _$failedField;
try {
_$failedField = 'card';
card.build();
} catch (e) {
throw new BuiltValueNestedFieldError(
'CardDetails', _$failedField, e.toString());
}
rethrow;
}
replace(_$result);
return _$result;
}