copyWith method

SetProfileAudioPosition copyWith({
  1. int? fileId,
  2. int? afterFileId,
})

Implementation

SetProfileAudioPosition copyWith({int? fileId, int? afterFileId}) =>
    SetProfileAudioPosition(
      fileId: fileId ?? this.fileId,
      afterFileId: afterFileId ?? this.afterFileId,
    );