copyWith method

LogoutParameterModel copyWith({
  1. String? wormUserId,
})

Implementation

LogoutParameterModel copyWith({
  String? wormUserId,
}) {
  return LogoutParameterModel(
    wormUserId: wormUserId ?? this.wormUserId,
  );
}