copyWith method

PeripheralRenameV2Body copyWith({
  1. int? definitionId,
  2. String? displayName,
})

Implementation

PeripheralRenameV2Body copyWith({int? definitionId, String? displayName}) {
  return PeripheralRenameV2Body(
      definitionId: definitionId ?? this.definitionId,
      displayName: displayName ?? this.displayName);
}