clone method
Clone the field configuration with optional overrides.
Implementation
CsrFieldConfig clone(
{int? start,
int? width,
String? name,
CsrFieldAccess? access,
int? resetValue,
List<int>? legalValues}) =>
CsrFieldConfig(
start: start ?? this.start,
width: width ?? this.width,
name: name ?? this.name,
access: access ?? this.access,
resetValue: resetValue ?? this.resetValue,
legalValues: legalValues ?? this.legalValues,
);