copyWithWrapped method
Implementation
RegisterMap copyWithWrapped(
{Wrapped<int?>? registerMapId,
Wrapped<String?>? name,
Wrapped<enums.DataSourceType?>? dataSourceType}) {
return RegisterMap(
registerMapId:
(registerMapId != null ? registerMapId.value : this.registerMapId),
name: (name != null ? name.value : this.name),
dataSourceType: (dataSourceType != null
? dataSourceType.value
: this.dataSourceType));
}