copyWith method

SoftwareVersion$Response copyWith({
  1. String? softwareVersion,
})

Implementation

SoftwareVersion$Response copyWith({String? softwareVersion}) {
  return SoftwareVersion$Response(
      softwareVersion: softwareVersion ?? this.softwareVersion);
}