copyWith method
- int? registerMapId,
- String? name,
- DataSourceType? dataSourceType,
Implementation
RegisterMap copyWith(
{int? registerMapId,
String? name,
enums.DataSourceType? dataSourceType}) {
return RegisterMap(
registerMapId: registerMapId ?? this.registerMapId,
name: name ?? this.name,
dataSourceType: dataSourceType ?? this.dataSourceType);
}