copyWith method

AtsUpdateV3Body copyWith({
  1. String? displayName,
})

Implementation

AtsUpdateV3Body copyWith({String? displayName}) {
  return AtsUpdateV3Body(displayName: displayName ?? this.displayName);
}