copyWith method

SolidConfig copyWith({
  1. RemoteStorageLayout? layout,
})

Implementation

SolidConfig copyWith({RemoteStorageLayout? layout}) {
  return SolidConfig(
    layout: layout ?? this.layout,
  );
}